home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / dos / c / hexfile.com / HEXFILE.DOC < prev    next >
Encoding:
Text File  |  1989-09-14  |  918 b   |  25 lines

  1.                              HEXFILE
  2.  
  3.                            version 1.0
  4.                                 by
  5.                            Joseph Berry
  6.                             73170,1341
  7.  
  8. This little utility takes as input ANY file and creates an output 
  9. file containing the ASCIIized hexidecimal equivalent of the file 
  10. in a format usable by C compilers. For example, given a file that 
  11. contains the numbers one through five in bytes one through five, 
  12. HEXFILE will create an output equivalent as follows: 
  13. 0x01,0x02,0x03,0x04,0x05.
  14.  
  15. This output ASCII file can then be edited by any editor and used 
  16. by placing it as a compile definition for some global variable(s) 
  17. in your C source code. 
  18.  
  19. The program was compiled using MicroSoft C version 5.1: 
  20.   CL HEXFILE.C
  21.  
  22. It's a simple program but I desparately needed it and couldn't 
  23. find another program that performed this function.  Enjoy!
  24.  
  25.